home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / usemodwiki_xss.nasl < prev    next >
Text File  |  2005-01-14  |  1KB  |  54 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4.  
  5. if (description)
  6. {
  7.  script_id(15967);
  8.  script_bugtraq_id(11924);
  9.  script_version ("$Revision: 1.1 $");
  10.  
  11.  script_name(english:"UseModWiki Cross Site Scripting");
  12.  desc["english"] = "
  13. The remote host is using UseModWiki, a wiki CGI written in PERL.
  14.  
  15. The CGI 'wiki.pl' is vulnerable to a cross-site-scripting issue
  16. that may allow attackers to steal the cookies of third parties.
  17.  
  18. Solution: Upgrade to a newer version.
  19. Risk factor : Medium";
  20.  
  21.  script_description(english:desc["english"]);
  22.  script_summary(english:"Determine if wiki.pl is vulnerable to xss attack");
  23.  script_category(ACT_GATHER_INFO);
  24.  script_family(english:"CGI abuses", francais:"Abus de CGI");
  25.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  26.  script_dependencie("cross_site_scripting.nasl");
  27.  script_require_ports("Services/www", 80);
  28.  exit(0);
  29. }
  30.  
  31. include("http_func.inc");
  32. include("http_keepalive.inc");
  33.  
  34. port = get_http_port(default:80);
  35.  
  36. if(!get_port_state(port))exit(0);
  37. if(get_kb_item(string("www/", port, "/generic_xss"))) exit(0);
  38. if(!can_host_php(port:port))exit(0);
  39.  
  40. foreach d (cgi_dirs())
  41. {
  42.  url = string(d, '/wiki.pl?<script>foo</script>');
  43.  req = http_get(item:url, port:port);
  44.  buf = http_keepalive_send_recv(port:port, data:req, bodyonly:1);
  45.  if( buf == NULL ) exit(0);
  46.  
  47.  if('<script>foo<' >< buf )
  48.    {
  49.     security_warning(port);
  50.     exit(0);
  51.    }
  52.  
  53. }
  54.